home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000140_jbsp78@yahoo.com_Wed Dec 4 08:44:01 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  51 lines

  1. Article: 13921 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: jbsp78@yahoo.com (Jesse Byler)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Serial Connection over SSH
  6. Date: 3 Dec 2002 17:34:40 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 33
  9. Message-ID: <99b5f249.0212031734.50e141be@posting.google.com>
  10. NNTP-Posting-Host: 67.96.115.194
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1038965680 8684 127.0.0.1 (4 Dec 2002 01:34:40 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 4 Dec 2002 01:34:40 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13921
  17.  
  18. Hi all,
  19.  
  20. I have a serial device connected to COM1 on a Windows 2000 machine,
  21. and I'd like to be able to access the device remotely - e.g. via SSH. 
  22. I have set up Cygwin's sshd, so I can log into the windows machine via
  23. SSH.  Ideally I'd like to compile ckermit under cygwin, but I'd be
  24. willing to pay for Kermit 95 if it could do what I want.  I'm having
  25. two problems with Kermit 95:
  26.  
  27. 1. The trial version won't run remotely, because it tries to pop up a
  28. GUI window to remind me about the trial.  I assume this will go away
  29. once I register, but can someone confirm that?  i.e. Running k95.exe
  30. doesn't open a GUI window once it's registered?
  31.  
  32. 2. In order to run in a cygwin window or over an SSH connection, I
  33. have to run k95.exe -# 96 to tell kermit to use stdin/stdout instead
  34. of the Windows console.  This partially works, but stdin seems to be
  35. line-buffered, so that the serial device doesn't see my input until I
  36. press return.  Is there some way around this?  ckermit does exactly
  37. what i want: it doesn't do any terminal emulation or buffering but
  38. gives me a direct connection to the COM-port's I/O, so the local
  39. terminal can do its thing.  Too bad ckermit won't run on Windows.
  40.  
  41. Another possibility I looked into was to use an iksd server instead of
  42. sshd, but iksd disables the "set port" command I need to use to
  43. connect to the serial port.  Perhaps I could use the old "host mode"
  44. instead, and modify it so that it allows the serial connection?
  45.  
  46. In case it's not clear, here's a diagram of what I want to do:
  47.  
  48. laptop (linux)  =====SSH=====>  Windows 2000  =====COM1=====>  Device
  49.  
  50. -Jesse
  51.